home *** CD-ROM | disk | FTP | other *** search
- On 10-Mai-97 Hakan Venderlof wrote:
-
- >>Pen 1
- >>locate 1,1 : Print"AAA"
- >>locate 1,2 : Print"BBB"
- >>Now I want the text to be rewritten with Pen 2
- >>only when the pointer is over it.
- >>I did find some ways to do it but the text always flickers...
-
- Try:
-
- Reserve Zone 2
-
- Pen 1
- Locate 1,1 : Print Zone$("AAA",1)
- Locate 1,2 : Print Zone$("BBB",2)
-
- Do
- MZ=Mouse Zone
-
- If MZ=1
- Pen 2 : Locate 1,1 : Print Zone$("AAA",1)
- Repeat
- If Mouse Key=1 Then DO-ANYTHING
- Until Mouse Zone<>MZ
- Pen 1 : Locate 1,1 : Print Zone$("AAA",1)
- End If
-
- If MZ=2
- Pen 2 : Locate 1,2 : Print Zone$("BBB",2)
- Repeat
- If Mouse Key=1 Then DO-ANYTHING-ELSE
- Until Mouse Zone<>MZ
- Pen 1 : Locate 1,2 : Print Zone$("BBB",2)
- End if
- Loop
-
-
- Greets, Lonestar.
-
- --
- -------------------------------------------------------------------------
- # #### # # ##### ########### # #### ODIN ENTERTAINMENT PRODUCTIONS
- # # # ## # # # # # # #
- # #### # # # ##### ### # # # #### STAR FILM PRODUCTIONS
- # # ## # # ##### # #
- ###### # # ##### #### # # # # # STAR BBS +49/09225/95332
- -------------------------------------------------------------------------
- EMAIL: LONESTAR@KULMBACH.BAYNET.DE -- WEB: WWW.KULMBACH.BAYNET.DE/~KX0010
- -------------------------------------------------------------------------
-
-
-